home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 8823 / 8823.xpi / chrome / omnibar / content / options.js < prev    next >
Text File  |  2009-09-05  |  444b  |  18 lines

  1. var Options = {
  2.   commitChanges: true,
  3.   init: function() {
  4.     
  5.   },
  6.   done: function() {
  7.     
  8.   },
  9.   updateDependents: function(conditionId) {
  10.     var pref = document.getElementById(conditionId).getAttribute('preference');
  11.     var disable = !document.getElementById(pref).value;
  12.     var els = document.getElementsByAttribute("dependson", conditionId);
  13.     for(var i = 0; i < els.length; i += 1) {
  14.       els[i].disabled = disable;
  15.     }
  16.   }
  17. }
  18.